php get file type from url

48

php get file type from url -

$file_info = new finfo(FILEINFO_MIME_TYPE);
$mime_type = $file_info->buffer(file_get_contents($image_url));
echo $mime_type;

Comments

Submit
0 Comments